home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Games / NeXTmj / Source / InterfaceView.h < prev    next >
Text File  |  1991-03-10  |  686b  |  37 lines

  1.  
  2. /* Generated by Interface Builder */
  3.  
  4. /*
  5.  * An interface view is simple a base class for
  6.  *    Objective-C views that interface with the Game Interface
  7.  *    object.
  8.  *
  9.  * The sole purpose of this object is to hold a instance
  10.  *    pointer to the Game Interface object.
  11.  *
  12.  *
  13.  $Author$
  14.  $Header$
  15.  *
  16.  $Log$
  17.  */
  18.  
  19.  
  20. #import <appkit/View.h>
  21.  
  22. @interface InterfaceView:View {
  23.  
  24.                                                 // This is the Game Interface
  25.                                                 //    object.  We have to use a generic ID
  26.                                                 //    here otherwise the header files
  27.                                                 //    would be cross dependent.
  28.     id    gameInterface;
  29. }
  30.  
  31.                                                 // Sets up some additional View
  32.                                                 //    defaults.
  33. - initFrame:( const NXRect * )frameRect;
  34.  
  35.  
  36. @end
  37.